home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / dlibsrc.arc / CPRINTF.C < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-04  |  139 b   |  11 lines

  1. #include <stdio.h>
  2.  
  3. extern    int    putch();
  4.  
  5. cprintf(fmt, arg)
  6.     char *fmt;
  7.     int arg;
  8.     {
  9.     return(_printf(NULL, putch, fmt, &arg));
  10.     }
  11.